home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0085 / 317.txt < prev    next >
Text File  |  1997-04-16  |  12KB  |  276 lines

  1. =========================================================================
  2.  
  3. INFO-ATARI16 Digest         Mon, 12 Mar 90       Volume 90 : Issue  317
  4.  
  5. Today's Topics:
  6.               About the Laserwriter driver for Timeworks
  7.                       Atari and the Everyday Pe
  8.                        Data Structures Toolkit
  9.                           Hard disk problems
  10.                         linear algebra package
  11. ----------------------------------------------------------------------
  12.  
  13. Date: Mon, 12 Mar 90 17:03 N
  14. From: Anne-Mie Vandermeeren - RUG <AVM%BGERUG51.BITNET@Forsythe.Stanford.EDU>
  15. Subject: About the Laserwriter driver for Timeworks
  16.  
  17. Hi,
  18.  
  19. I'm not a subscriber to the list, but I do have a question.
  20.  
  21. It looks like the Apple Laserwriter driver from Timeworks is communicating
  22. with the Laserwriter. In the first place it asks for the status of the
  23. Laserwriter, and second it asks for the kind of interface the Laserwriter
  24. is initialized on (one of the option numbers of the Laserwriter).
  25. If no answer comes on that question the first time, it asks it several times,
  26. but with a timeout. If no answer came at all, it starts sending the Postscript
  27. commands with the Xon/Xoff handshaking.
  28.  
  29. This is where my problem comes. I want the Atari to send the Postscript to
  30. a VAX machine and from there on print to the Laserwriter. I don't want to
  31. answer the question of the option number ( the handshaking), but I want to
  32. change the default of the printer driver in Timeworks to the DTR/DSR (
  33. option 68).
  34.  
  35. Is it possible to do that, or am I asking a hell of a question ?
  36.  
  37. Please answer to me directly, since I'm not a subscriber to this list.
  38.  
  39. Anne-Mie Vandermeeren (avm@bgerug51.bitnet)
  40.  
  41. ------------------------------
  42.  
  43. Date: 12 Mar 90 16:43:56 GMT
  44. From: cs.umn.edu!thelake!steve@ub.d.umn.edu  (Steve Yelvington)
  45. Subject: Atari and the Everyday Pe
  46. Message-ID: <A1434195052@thelake.mn.org>
  47.  
  48. [In article <90031201022042@masnet.uucp>,
  49.      david.schreiber@canremote.uucp (DAVID SCHREIBER) writes ... ]
  50.  
  51. > It is IMPOSSIBLE for Nintendo to be sing "monopolistic" practices
  52. > against Atari. Check your dictionary.
  53.  
  54. Oh, really? It says:
  55.  
  56. mo*nop*o*ly 1. exclusive control of a commodity or service in a given
  57. market, or control that makes possible the fixing of prices and the
  58. virtual elimination of free competition.
  59.  
  60. According to the Associated Press, Rep. Dennis Eckart of Ohio, chairman of
  61. the House small business subcommittee on antitrust, asked the U.S. Justice
  62. Department's antitrust division last December to investigate Nintendo.
  63.  
  64. Nintendo controls 80 percent or more of the videogames market. That in
  65. itself is not monopolistic, but:
  66.  
  67. * He accused Nintendo of intimidating retailers to keep competitors off
  68. toy store shelves.
  69.  
  70. * He said Nintendo has used exclusive software arrangements and physical
  71. computer-chip barriers to control the market. Nintendo installs a
  72. "lock-out chip" in each cartridge, and only licensed game cartridges
  73. including that chip can be used on Nintendo players.
  74.  
  75. *  He said Nintendo had created artificial shortages of some games sold by
  76. licensed software producers.
  77.  
  78. * He said the result of Nintendo's marketing practices is that only games
  79. licensed or sold by Nintendo can be played on the Nintendo players,
  80. blocking independent software publishers and inflating the costs of games
  81. to consumers by an estimated 20 percent to 30 percent.
  82.  
  83. I don't think anyone is close to filing any criminal charges, but similar
  84. allegations are contained in the Atari Games (Tengen) civil suit. (Atari
  85. Games is not affiliated with Atari Corp.)
  86.  
  87. --
  88.    Steve Yelvington at the lake in Minnesota
  89.    UUCP path: ... umn-cs.cs.umn.edu!thelake!steve
  90.  
  91. ------------------------------
  92.  
  93. Date: 12 Mar 90 17:38:02 GMT
  94. From:
  95.  cs.utexas.edu!jarvis.csri.toronto.edu!utgpu!watserv1!watdragon!tiger!swklassen@
  96.  tut.cis.ohio-state.edu  (Steven W. Klassen)
  97. Subject: Data Structures Toolkit
  98. Message-ID: <21875@watdragon.waterloo.edu>
  99.  
  100. Many months ago I asked the net if anyone was interested in a
  101. toolkit (collection of C routines) I was putting together to
  102. work with various data structures.  I only got a few responses
  103. but decided to go ahead with the project anyway since it would
  104. be useful to me.
  105.  
  106. I have finally completed version 1.0 of my toolkit and it is
  107. ready to go to the net.  If you are interested in receiving
  108. it please e-mail me.  If there are enough responses I will
  109. post to the net, otherwise I will just e-mail it to those
  110. who want it.
  111.  
  112. This initial version contains routines for various types of
  113. sorts as well as for working with different types of lists.
  114. It contains three libraries, described briefly below:
  115.  
  116. sorts - This library includes routines for sorting an array
  117.         of character pointers.  (Which are, of course, pointing
  118.         to the data you really want to sort.)  It includes
  119.         a simple linear insertion sort (inefficient but easy
  120.         to understand), Hoare's quicksort (efficient for
  121.         'average' arrays but inefficient if the array is
  122.         already in increasing order), and the heapsort algorithm
  123.         (efficient in all cases but slightly more overhead
  124.         than the quicksort.
  125.  
  126. lists - This library defines a data type called list.  Two
  127.         implementations are included, a singly linked list and
  128.         a doubly linked list.  Routines are included to create
  129.         lists, insert and delete stuff, move around in the
  130.         list, retrieve stuff, and catenate and split lists.
  131.         The lists are created in such a way that they can
  132.         contain any type of data.  (In fact you can put a
  133.         different data type in each node if you want to.)
  134.  
  135. clist - This library defines a data type called a circular
  136.         list.  These lists are similar to the above lists
  137.         except that they go in a circle (i.e. the 'last'
  138.         element will point back to the 'first' element).
  139.         Both singly linked and doubly linked implementations
  140.         are included.  All the same routines are included
  141.         as in lists with the exception of catenate and split.
  142.  
  143. The toolkit is broken into three directories.
  144. doc\ contains the documentation for each of the libraries as well
  145. as copywrite restrictions (see below) and a list of error messages
  146. the toolkit may produce on occasion.
  147.  
  148. include\ contains all the header files required to defined the
  149. data types.
  150.  
  151. src\ contains arc'ed files containing the source code for the toolkit.
  152.  
  153. The entire toolkit is available in source form only.  To use it
  154. you can either #include the source files into your programs or
  155. compile them into libraries (which is what I did) in a form
  156. acceptable to your C compiler.
  157.  
  158. All the code has been written in Mark Williams C but should work
  159. with any K & R C compiler with little or no modification.
  160.  
  161. If you have any problems with the toolkit (errors or ideas for
  162. improvement) let me know and I may change them in a future
  163. upgrade.
  164.  
  165. Copywrite information:
  166. For complete copywrite information see the copywrit file in the
  167. doc/ directory.  Basically you can use my sources without
  168. restriction in any non-profit application provided that you
  169. also provide source code.  If you want to use them in a for-
  170. profit application (including shareware) you need to contact
  171. me first.  (I will rarely require money, usually I will just
  172. ask that you put in a credit with my name on it if I think
  173. your program is well written, or require that you remove all
  174. mention of me if I think your program sucks.)
  175.  
  176. Once again, if you are interested in this toolkit, e-mail me
  177. and I will either e-mail you a copy or post to the net.
  178.  
  179. Steven W. Klassen                       +-----------------------------+
  180. Computer Science Major                  | Support the poor...buy fur! |
  181. University of Waterloo                  +-----------------------------+
  182.  
  183. ------------------------------
  184.  
  185. Date: 12 Mar 90 09:58:38 GMT
  186. From: mcsun!inria!loria!cartan.crin.fr!domen@uunet.uu.net  (Eric Domenjoud)
  187. Subject: Hard disk problems
  188. Message-ID: <1814@loria.crin.fr>
  189.  
  190. Some days ago, my hard disk got completely corrupted: I first noticed
  191. that some files were mixed on the disk and looking at the FATS and the root
  192. directory, I saw that a file was partly written in the root directory and
  193. some clusters were allocated to more than one file. It's actually the fourth
  194. time it happens but I never exactly identified the problem before.
  195.  
  196. I noticed that the first data cluster on the disk corresponds to the third
  197. entry in the FATS, that's to say, is numbered 2 since the first one is
  198. numbered 0. This means that the data clusters 0 and 1 are actually never
  199. used and thus marked as free in the FATS (at least on my disk which is not
  200. an ATARI disk) and that they are actually located in the root directory,
  201. exactly where a part of my files were written.
  202.  
  203. My questions are then:
  204.  
  205. 1) Did anybody already experience this problem?
  206.  
  207. 2) Are the data clusters 0 and 1 marked as free ($0000) on the ATARI disks?
  208.  
  209. 2) Is it posible that a poorly behaved program allocates these two non
  210.    existing data clusters, thinking that they are free?
  211.  
  212.  
  213. This problem occured first while copying a file with the Universal Item
  214. Selector and then almost systematicaly with Turbo C.
  215.  
  216. My disk is a 30MB with OMTI controler bought at
  217. FSE in Kaiserslautern (W. Germany).
  218.  
  219.  
  220. Eric Domenjoud
  221. e-mail: domen@loria.crin.fr
  222.  
  223. ------------------------------
  224.  
  225. Date: 12 Mar 90 17:49:10 GMT
  226. From:
  227.  clyde.concordia.ca!jarvis.csri.toronto.edu!utgpu!watserv1!watdragon!tiger!swkla
  228.  ssen@uunet.uu.net  (Steven W. Klassen)
  229. Subject: linear algebra package
  230. Message-ID: <21877@watdragon.waterloo.edu>
  231.  
  232. Now that ver. 1.0 of my toolkit has been completed, it is time
  233. to start working on ver. 2.0.
  234.  
  235. Currently I am planning on ver. 2.0 to included a library for
  236. working with various implementations of binary trees, as well
  237. as a library which I am currently just calling a linear algebra
  238. package.
  239.  
  240. My initial proposal for the linear algebra package would include
  241. a number of routines for finding the roots of polynomials and
  242. for working with matrices.  The matrices routines would include
  243. finding determinants, eigenvalues, eigenvectors, norms (maybe),
  244. row reduction (solving systems of equations), inversion, and
  245. multiplying matrices.  This is a rather incomplete list and I
  246. am hoping that some of you out there can help add to this list.
  247. Please e-mail me and tell me what you would look for in a linear
  248. algebra package.  What sort of routines (if you could provide
  249. the location of algorithms, i.e. names of textbooks, that
  250. would also be useful) would you like to see, and what sort
  251. of calling format would you like to see.  I won't guarantee
  252. that I will use all your ideas or even that I will respond to
  253. your mail, but I will consider all ideas.
  254.  
  255. ver. 2.0 of the toolkit (including all updates and corrections
  256. from ver. 1.0, a library for working with binary trees, and
  257. the linear algebra package) should be ready by Christmas but
  258. I can make no guarantees to that effect.  (Depends on how much
  259. overtime I get at my new job.)
  260.  
  261. (P.S. If anyone wants to help write any of it, or if you already
  262. have some routines which you have written but don't want to go
  263. to the trouble of supporting, feel free to e-mail me and we can
  264. probably work something out.)
  265.  
  266.  
  267.  
  268. Steven W. Klassen                       +-----------------------------+
  269. Computer Science Major                  | Support the poor...buy fur! |
  270. University of Waterloo                  +-----------------------------+
  271.  
  272. ------------------------------
  273.  
  274. End of INFO-ATARI16 Digest V90 Issue #317
  275. *****************************************
  276.